home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / dev / devNull.h < prev    next >
C/C++ Source or Header  |  1992-12-18  |  1KB  |  39 lines

  1. /*
  2.  * devNull.h --
  3.  *
  4.  *    Declarations of  procedures for the /dev/null device.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  *
  16.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/dev/devNull.h,v 9.1 90/09/11 12:12:53 rab Exp $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _DEVNULL
  20. #define _DEVNULL
  21.  
  22. /*
  23.  * Forward Declarations.
  24.  */
  25.  
  26. /*  extern ReturnStatus Dev_NullOpen(); */
  27. /*  extern ReturnStatus Dev_NullClose(); */
  28.  
  29. extern ReturnStatus Dev_NullRead _ARGS_((Fs_Device *devicePtr,
  30.     Fs_IOParam *readPtr, Fs_IOReply *replyPtr));
  31. extern ReturnStatus Dev_NullWrite _ARGS_((Fs_Device *devicePtr,
  32.     Fs_IOParam *writePtr, Fs_IOReply *replyPtr));
  33. extern ReturnStatus Dev_NullIOControl _ARGS_((Fs_Device *devicePtr,
  34.     Fs_IOCParam *ioctlPtr, Fs_IOReply *replyPtr));
  35. extern ReturnStatus Dev_NullSelect _ARGS_((Fs_Device *devicePtr, int *readPtr,
  36.     int *writePtr, int *exceptPtr));
  37.  
  38. #endif /* _DEVNULL */
  39.